runtime.hchan.closed (field)
10 uses
runtime (current package)
chan.go#L38: closed uint32
chan.go#L193: if !block && c.closed == 0 && full(c) {
chan.go#L204: if c.closed != 0 {
chan.go#L280: if c.closed == 0 {
chan.go#L363: if c.closed != 0 {
chan.go#L374: c.closed = 1
chan.go#L484: if atomic.Load(&c.closed) == 0 {
chan.go#L513: if c.closed != 0 {
select.go#L262: if c.closed != 0 {
select.go#L269: if c.closed != 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |